print all complete object in list c#

80

print all complete object in list c# -

var list = new List<int>(Enumerable.Range(0, 50));

  list.ForEach(Console.WriteLine);

Comments

Submit
0 Comments